home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD ROM Paradise Collection 4
/
CD ROM Paradise Collection 4 1995 Nov.iso
/
bbs
/
ho51.zip
/
homenu.bat
< prev
next >
Wrap
DOS Batch File
|
1994-09-24
|
883b
|
51 lines
@echo off
rem
rem MAIN another sample Hands On menu
rem updated Fri 09-23-1994 16:58:20
:start
homnu menu "t:Main Menu" "Phone matters" "Start_stop" "Other" "Manuals & Misc" "Read README.DOC" "Quit"
if errorlevel == 6 goto :end
if errorlevel == 5 goto :readme
if errorlevel == 4 goto :help
if errorlevel == 3 goto :other
if errorlevel == 2 goto :on_off
if errorlevel == 1 goto :phone
goto :end
:phone
rem select an entry to dial
rem 1sthand dial
rem 1sthand call
phone.bat
goto :start
:on_off
rem one of the menu batch files
rem mapmem
rem pause
on_off.bat
goto :start
:other
rem the misc menu batch file
rem mapmem
rem pause
homisc.bat
goto :start
:help
rem on-line help and access to the manuals
1sthand
goto :start
:readme
1sthand readme.doc
goto :start
:end
cls
rem q homenu.bat
rem END